home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / comm / tftb.zip / RUN.SLT < prev    next >
Text File  |  1992-04-24  |  1KB  |  26 lines

  1. ///////////////////////////////////////////////////////////
  2. // PROGRAM: RUN.SLT                                      //
  3. // AUTHOR:  Christopher Saunders                         //
  4. // DATE:    April 25th 1992                              //
  5. //                                                       //
  6. // INFORMATION                                           //
  7. // ~~~~~~~~~~~                                           //
  8. // When this script is executed, it will shell out from  //
  9. // Telix, and run  the pre-defined  program.  Use it to  //
  10. // run your  favorite  drawing program  (TheDraw), file  //
  11. // management utility or whatever else you like.         //
  12. //                                                       //
  13. // *NOTE*                                                //
  14. //                                                       //
  15. // Change PROGRAM.EXE to any program of your choice.  It //
  16. // can  be any  .EXE, .COM  or .BAT file.  Remember that //
  17. // Telix is  still in  memory, so  you might not have as //
  18. // much memory  to play with (not that Telix is a memory //
  19. // hog!)                                                 //
  20. ///////////////////////////////////////////////////////////
  21.  
  22. main()
  23. {
  24. dos("PROGRAM.EXE"); // Put program name here!
  25. }
  26.